home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / knowhow4 / blk_ask.h < prev    next >
C/C++ Source or Header  |  1994-10-10  |  783b  |  29 lines

  1. #ifndef __BLOCK_ASK_H_
  2. #define __BLOCK_ASK_H_
  3.  
  4. #include "blk.h"
  5. #include "ask.h"
  6.  
  7. class BlockAsk : public Block
  8.     {
  9.     public:
  10.     Ask* table;
  11.     Element* home_element;
  12.     Element* end_element;
  13.     Element* ok_element;
  14.  
  15.     BlockAsk(rect coordinates,                // Screen cells
  16.            char* tabName,                     // Table name
  17.            KH_STRTABLE* fields,               // Field names
  18.            char* fName = "",                  // File for swapping
  19.            BORDERS b_type = SHOW_BORDER,      // Border type
  20.            int res = FIXED,                   // Resize status
  21.            int elem_pat = 0);                 // Buttons
  22.     virtual void hide();
  23.     virtual void rearrange();
  24.     virtual void touch(int i = 0) { table->touch(i); }
  25.     };
  26.  
  27.  
  28.  
  29. #endif __BLOCK_ASK_H_